/* ===== SECTION ===== */
.admission {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* ===== TITLE ===== */
.title-card {
  background: linear-gradient(45deg, #0b2e59, #2563eb);
  color: #fff;
  padding: 18px;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== SECTION BOX ===== */
.section-box {
  margin-top: 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  color: #0b2e59;
  font-size: 22px;
}

/* ===== ELIGIBILITY LIST ===== */
.eligibility-list {
  max-width: 700px;
  margin: auto;
  list-style: none;
  padding: 0;
}

.eligibility-list li {
  background: #fff;
  margin: 10px 0;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.eligibility-list li:hover {
  transform: translateX(5px);
  background: #e6f0ff;
}

/* ===== TABLE ===== */
.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

thead {
  background: #0b2e59;
  color: #fff;
}

th, td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tbody tr:hover {
  background: #f2f7ff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  th, td {
    font-size: 14px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeTop {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: fadeUp 0.8s ease forwards;
}

.animate-left {
  animation: fadeLeft 0.8s ease forwards;
}

.animate-top {
  animation: fadeTop 0.8s ease forwards;
}

.animate-fade {
  animation: fadeUp 1s ease forwards;
}